Passed
Push — renovate/gatsby-parallel-runne... ( 92a788 )
by
unknown
04:57
created

Sponsor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1
1
import React, { Component } from "react"
2
3
import { SingleImageCard } from "../components/cards"
4
5
class Sponsor extends Component {
6
  render() {
7
    const { localFile, uri = null } = this.props
8
9
    return <SingleImageCard localFile={localFile} link={uri} />
10
  }
11
}
12
13
export default Sponsor
14